home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / dbase / vpi1_330.zip / WHATS.NEW < prev    next >
Text File  |  1992-01-09  |  3KB  |  66 lines

  1.  
  2. January, 1992
  3.  
  4. VP-Info Level 1 is the succesor to SR-Info version 3.14.
  5.  
  6. A number of new features have been added to VP-Info with this release.
  7.  
  8. The three most important are:
  9.  
  10.    Support for memo fields.
  11.       You can now access memo fields from either dBASE III or dBASE 4.1
  12.       data files. As well, you can add memos to any of the VP-Info data
  13.       file types.
  14.       When viewing records in either BROWSE, EDIT, or READ, simply press
  15.       alt-R to read or view a memo, alt-W to change or write a memo.
  16.       Memos can also be accessed directly with the WRITE and TEXT commands.
  17.       Suppose you have a data file with a memo field called NOTES.
  18.       To print a memo (either to the screen, the printer, or to another file)
  19.       use the command TEXT M.NOTES.
  20.       To WRITE the same memo, enter the command WRITE M.NOTES.
  21.       Note that the WRITE commands invites you to save under a differant
  22.       name. You can thus load write with any of an ASCII file, a VP-Info
  23.       library block, or a memo, and save to any of the others.
  24.       The sample program MEMODEMO.PRG illustrates the use of memos.
  25.  
  26.    Enhanced MENU( function.
  27.    The MENU( function has two new variations.
  28.       There is an optional third parameter, the timeout time in seconds.
  29.       For example, CHOICE=MENU(6,12,5) activates a menu with 6 choices,
  30.       a menu bar 12 characters wide, and a timeout in 5 seconds. If the
  31.       menu "times out", the result is set to 65 and your program can
  32.       respond accordingly.
  33.       The first parameter can be replaced by a string of first letter
  34.       triggers for each choice, including the zero choice.
  35.       For example, CHOICE=MENU("qrdn",12) might represent a menu with
  36.       3 choices (plus 0) where q means QUIT, r means REVISE, etc. Note
  37.       that the string is not case sensative - the user and the input
  38.       string are both converted to upper case before testing.
  39.  
  40.    EDIT OFF
  41.       This command, formerly available only to VP-Info Professional, is
  42.       a programmer's delight! It allows you to create custom screens
  43.       using the TEXT command, define an ON FIELD structure, and have all
  44.       the EDIT keystrokes available to move from record to record as well
  45.       as append records.
  46.  
  47. Also:
  48.  
  49.    The Info EFFECTS system.
  50.       This system provides for a variety of sound effects as well as
  51.       animated screen swapping.
  52.       To activate the system enter SET SOUND ON.
  53.       To de-activate the system enter SET SOUND OFF (the default setting).
  54.       There are a small number of hardware/software combinations that
  55.       confilict with the Info Effects.
  56.       Fifteen different sounds may be invoked by the command SOUND n where
  57.       n is a number from 0 to 15. Note that SOUND 2 is continuous. It can
  58.       be turned off by invoking another sound or by the command SOUND 0.
  59.  
  60.       The screen effects all copy background screen 2 to screen 1, but
  61.       with animation. For example SCREEN Tear exposes the new screen
  62.       as though a page is torn from a pad. SCREEN Left slides the new
  63.       screen in from the left. The other variations are Right, Up, Down,
  64.       Open, and Close. Only the first letter of the variation is required.
  65.       i.e. SCREEN T is the same as SCREEN Tear.
  66.